b28dc298f36b86bee27b35ec784652acf395c979,flex/tools/BuiltInFlexCompiler/Flex4Compiler/src/com/intellij/flex/compiler/flex4/Flex4Handler.java,Flex4Handler,populateDefaults,#flex2.tools.oem.Configuration#ToolsConfiguration#CompilerConfiguration#,118

Before Change


    oemConfig.showDeprecationWarnings(cc.showDeprecationWarnings());
    oemConfig.showShadowedDeviceFontWarnings(cc.showShadowedDeviceFontWarnings());
    oemConfig.showUnusedTypeSelectorWarnings(cc.showUnusedTypeSelectorWarnings());
    oemConfig.setSourcePath(toFiles(cc.getSourcePath()));    // CHANGES HERE
    oemConfig.enableStrictChecking(cc.strict());
    oemConfig.setTheme(toFiles(cc.getThemeFiles()));
    oemConfig.useResourceBundleMetaData(cc.useResourceBundleMetadata());

After Change


    oemConfig.showDeprecationWarnings(cc.showDeprecationWarnings());
    oemConfig.showShadowedDeviceFontWarnings(cc.showShadowedDeviceFontWarnings());
    oemConfig.showUnusedTypeSelectorWarnings(cc.showUnusedTypeSelectorWarnings());
    oemConfig.setSourcePath(FlexCompilerUtil.getPathsWithLocaleToken(cc.getUnexpandedSourcePath(), toFiles(cc.getSourcePath()),
                                                                     cc.getLocales()));      // CHANGES HERE
    oemConfig.enableStrictChecking(cc.strict());
    oemConfig.setTheme(toFiles(cc.getThemeFiles()));
    oemConfig.useResourceBundleMetaData(cc.useResourceBundleMetadata());